/* ==========================
   DESTINATION HERO
========================== */

.destination-hero{
    position:relative;
    min-height:750px;
    background:url('../images/2.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Overlay */

.destination-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.65) 45%,
        rgba(0,0,0,.45) 100%
    );
}

/* Decorative Shape */

.destination-hero::before{
    content:'';
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-180px;
    right:-180px;
    z-index:1;
}

.destination-content{
    position:relative;
    z-index:2;
    max-width:800px;
    animation:fadeUp 1s ease;
}

#destination-content {
    padding: 22px 22px 20px;
    text-align: start;
}

@media (max-width:786px) {
    #destination-content {
         text-align: center;
    }
}

/* Tag */

.destination-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
    border:1px solid rgba(255,255,255,.2);
}

/* Heading */

.destination-content h1{
    color:#fff;
    font-size:90px;
    font-weight:800;
    line-height:1.05;
    margin-bottom:25px;
    text-shadow:0 5px 25px rgba(0,0,0,.35);
}

.destination-content h1 span{
    color:#d4af37;
}

/* Description */

.destination-content p{
    color:rgba(255,255,255,.92);
    font-size:20px;
    line-height:1.9;
    max-width:700px;
    margin-bottom:35px;
}

/* Buttons */

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary-custom{
    background:#D97A00;
    color:black;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.btn-primary-custom:hover{
    transform:translateY(-4px);
    color:#fff;
}

.btn-outline-custom{
    border:2px solid rgba(255,255,255,.8);
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#222;
    transform:translateY(-4px);
}

/* Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .destination-hero{
        min-height:650px;
    }

    .destination-content h1{
        font-size:65px;
    }

    .destination-content p{
        font-size:18px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .destination-hero{
        min-height:520px;
        text-align:center;
    }

    #destination-content{
        padding:0 15px;
    }

    .destination-content{
        max-width:100%;
    }

    .destination-tag{
        padding:10px 20px;
        font-size:12px;
        margin-bottom:15px;
    }

    .destination-content h1{
        font-size:42px;
        line-height:1.15;
        margin-bottom:15px;
    }

    .destination-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .hero-btns{
        justify-content:center;
        gap:12px;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width:100%;
        max-width:260px;
        text-align:center;
        padding:14px 25px;
        font-size:14px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .destination-hero{
        min-height:480px;
    }

    .destination-content h1{
        font-size:34px;
    }

    .destination-content p{
        font-size:14px;
    }

    .destination-tag{
        font-size:11px;
        padding:8px 18px;
    }
}

/* ==========================
   DESTINATION OVERVIEW
========================== */

.destination-overview{
    position:relative;
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

/* Background Effects */

.destination-overview::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(154,83,29,0.05);
}

.destination-overview::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(79,95,50,0.05);
}

.destination-overview .container{
    position:relative;
    z-index:2;
}

/* Image */

.destination-image{
    position:relative;
}

.destination-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:25px;
    padding:8px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.08),
        0 30px 70px rgba(0,0,0,0.12);
}

/* Decorative Border */

.destination-image::before{
    content:"";
    position:absolute;
    top:-12px;
    left:-12px;
    width:120px;
    height:120px;
    border-top:4px solid #9a531d;
    border-left:4px solid #9a531d;
    border-radius:20px;
}

.destination-image::after{
    content:"";
    position:absolute;
    bottom:-12px;
    right:-12px;
    width:120px;
    height:120px;
    border-bottom:4px solid #4f5f32;
    border-right:4px solid #4f5f32;
    border-radius:20px;
}

/* Subtitle */

.section-subtitle{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#9a531d;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:15px;
}

.section-subtitle::before{
    content:"";
    width:45px;
    height:2px;
    background:#9a531d;
}

/* Heading */

.destination-overview h2{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#4f5f32;
    margin-bottom:25px;
}

.destination-overview h2 span{
    color:#9a531d;
}

/* Content */

.destination-overview p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

/* Stats */

.destination-stats{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:35px;
}

.stat-box{
    flex:1;
    min-width:160px;
    padding:25px 20px;
    background:#fff;
    border-radius:18px;
    text-align:center;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:.3s ease;
}

.stat-box:hover{
    transform:translateY(-6px);
}

.stat-box h3{
    color: white;
    font-size:32px;
    font-weight:800;
    margin-bottom:8px;
}

.stat-box span{
    color:#666;
    font-size:14px;
    font-weight:500;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .destination-overview{
        padding:80px 0;
    }

    .destination-image{
        margin-bottom:40px;
    }

    .destination-overview h2{
        font-size:40px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .destination-overview{
        padding:70px 0;
    }

    .destination-overview h2{
        font-size:32px;
    }

    .destination-overview p{
        font-size:15px;
        line-height:1.8;
    }

    .destination-stats{
        gap:12px;
    }

    .stat-box{
        min-width:calc(50% - 6px);
        padding:18px 12px;
    }

    .stat-box h3{
        font-size:24px;
    }

    .destination-image::before,
    .destination-image::after{
        width:70px;
        height:70px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .destination-overview h2{
        font-size:28px;
    }

    .stat-box{
        min-width:100%;
    }

    .destination-image::before,
    .destination-image::after{
        display:none;
    }
}


/* =========================
   DESTINATIONS SECTION
========================= */

.destinations-section{
    background:#f5f5f5;
    padding:100px 0;
}

.destinations-section .container{
    max-width:1240px;
    margin:auto;
    padding:0 15px;
}

/* Heading */

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title h2{
    font-size:58px;
    font-weight:700;
    color:#3e4b29;
    margin-bottom:15px;
    line-height:1.2;
}

.section-title p{
    max-width:760px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#666;
}

/* Grid */

.destination-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* Card */

.destination-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
    transition:all .4s ease;
}

.destination-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

/* Image */

.destination-image{
    height:285px;
    overflow:hidden;
}

.destination-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

/* .destination-card:hover img{
    transform:scale(1.08);
} */

/* Content */

.destination-content{
    padding:22px 22px 20px;
    text-align:center;
}

.destination-content h3{
    font-size:30px;
    font-weight:500;
    color:#3e4b29;
    margin-bottom:12px;
}

.destination-content p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin-bottom:22px;

    display:-webkit-box;
    /* -webkit-line-clamp:2; */
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* Button */

.destination-btn{
    display:block;
    width:92%;
    margin:auto;
    padding:15px 20px;
    background: #D97A00;
    border-radius:50px;
    color:black;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:0.4s;
}

.destination-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}

/* Responsive */

@media(max-width:991px){

    .destination-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:45px;
    }
}

@media(max-width:767px){

    .destination-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
    }

    .destination-image{
        height:240px;
    }

    .destination-content h3{
        font-size:26px;
    }
}


.all-package-btn{
    background: #D97A00;
    color: black;
    text-decoration:none;
    padding:14px 35px;
    border-radius:40px;
    display:inline-block;
}
